private to the ACM implementation within Xen.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
#include "../xen.h"
-/* if ACM_DEBUG defined, all hooks should
- * print a short trace message (comment it out
- * when not in testing mode )
- */
-/* #define ACM_DEBUG */
-
-#ifdef ACM_DEBUG
-# define printkd(fmt, ...) printk(fmt, ##__VA_ARGS__)
-#else
-# define printkd(fmt, ...)
-#endif
-
/* default ssid reference value if not supplied */
#define ACM_DEFAULT_SSID 0x0
#define ACM_DEFAULT_LOCAL_SSID 0x0
/* #define ACM_TRACE_MODE */
#ifdef ACM_TRACE_MODE
-# define traceprintk(fmt, args...) printk(fmt,## args)
+# define traceprintk(fmt, args...) printk(fmt, ## args)
#else
# define traceprintk(fmt, args...)
#endif
+/* if ACM_DEBUG defined, all hooks should
+ * print a short trace message (comment it out
+ * when not in testing mode )
+ */
+/* #define ACM_DEBUG */
+
+#ifdef ACM_DEBUG
+# define printkd(fmt, args...) printk(fmt, ## args)
+#else
+# define printkd(fmt, args...)
+#endif
#ifndef ACM_SECURITY
* define/undefine this constant to receive / suppress any
* security hook debug output of sHype
*
- * include/public/xsm/acm.h defines a constant ACM_DEBUG
+ * include/xsm/acm/acm_hooks.h defines a constant ACM_DEBUG
* define/undefine this constant to receive non-hook-related
* debug output.
*/